home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 May / PCWorld_2007-05_cd.bin / komunikace / alleycode / alleycodesetup.exe / {app} / PHP / form.php < prev    next >
Encoding:
PHP Script  |  2003-11-08  |  396 b   |  19 lines

  1. <html>
  2. <head>
  3. <title> HTML, PHP and Forms. </title>
  4. <meta name="Generator" content="AlleyCode">
  5. </head>
  6.  
  7. <body>
  8. <form action="form.php" method="POST">
  9.   Your name: <input type="text" name="name">
  10.   Your age: <input type="text" name="age">
  11.   <input type="submit">
  12. </form>
  13.  
  14. <p>Hi <?php echo $_POST["name"]; ?>.
  15. You are <?php echo $_POST["age"]; ?> years old.</p>
  16.  
  17. </body>
  18. </html>
  19.